﻿
.page {
    list-style: none;
	padding: 10px 0;
}
.page > li {
	float: left;
	cursor: pointer;
}

.page .pageItem {
	border: solid thin #999999;
	margin: 5px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	line-height: 40px;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	color: #999;
    padding-right:0;
}

.page .pageItemActive {
	border: solid thin #1ca246;
	margin: 5px;
	background-color: #1ca246;
	color: white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	line-height: 40px;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
    padding-right:0;
}

.page .pageItem:hover {
	border: solid thin #001733;
	background-color: #1ca246;
	color: white;
}

.page .pageItemDisable {
	border: solid thin #001733;
	margin: 5px;
	/*background-color: #DDDDDD;*/
}

.pagebox{
	position: relative;
}
.pagectr{
	position: absolute;
	top: 15px;
	right: 0px;
	width: 160px;
	border: 1px solid #d6d6d6;
	height: 40px;
	border-radius: 20px;
	box-sizing: border-box;
	overflow: hidden;
}
.pagebox .prev{
	float: left;
	width: 79px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	cursor: pointer;
}
.pagebox .prev i{
	background-position: -150px -75px;
	width: 30px;
	height: 6px;
}
.pagebox .next{
	float: left;
	width: 79px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	cursor: pointer;
}
.pagebox .next i{
	background-position: -150px -50px;
	width: 30px;
	height: 6px;
}
.pagebox .next.pageItemActive,.pagebox .next:hover{
	background: #1ca246;
}
.pagebox .prev:hover,.pagebox .prev:hover{
	background: #1ca246;
}